home *** CD-ROM | disk | FTP | other *** search
- Path: ornews.intel.com!news
- From: thurman_b_miller@ccm2.hf.intel.com (Thurman Miller)
- Newsgroups: comp.lang.c++
- Subject: Re: HELP WITH MSVC++4.0
- Date: Wed, 17 Jan 1996 17:06:45 GMT
- Organization: Intel Corporation
- Message-ID: <4djada$j1m@ornews.intel.com>
- References: <4ddn9k$o5t@ns2.ptd.net>
- NNTP-Posting-Host: thurman-pc.ssd.intel.com
- X-Newsreader: Forte Free Agent 1.0.82
-
- Elipsky@postoffice.ptd.net (Elipsky) wrote:
-
- >-all help is appreciated-
-
- >i am just starting out and need help with creating windows.
- >i learn from examples and cant find any on making windows
- >plz email me with any thing to help.
-
- >thanks
- >-eric-
- >elipsky@postoffice.ptd.net
-
- First, you will get a better response on
- comp.os.ms-windows.programmer.tools.mfc
-
- That said, it's very quite simple....
-
- Create your project and select single form (not MDI) and on the last
- screen of prompting for new project, derive the view class from
- CFormView instead of CView.
-
- When it's done creating the project, you'll notice four very similar
- file names:
-
- MyApp.cpp
- MyAppDoc.cpp
- MyAppVw.cpp
- MyApp.rc
-
- Double click on the MyApp.rc, then double click on the "dialog" tree
- item. Your window will be displayed along with a pallette for you to
- start adding things. Compile and run w/out changing any code. It
- should "work" (ie->display a nice window) but won't do anything.
-
- Of course, now you're going to be completely lost because there's so
- much more....It's not the best, but I would recommend that you follow
- the tutorial that MS distributes, it'll at least give you an idea of
- what the heck Class Wizard is, and while you may choose not to use CW
- in the future, it will give you an idea of what is required.
-
- Thurman
-
-